Skip to content

Commit

Permalink
current date updated.
Browse files Browse the repository at this point in the history
  • Loading branch information
tjenni committed May 8, 2021
1 parent 1753b81 commit 9fcf1d1
Show file tree
Hide file tree
Showing 9 changed files with 16 additions and 18 deletions.
2 changes: 1 addition & 1 deletion lua-physical_example.tex
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
%!TEX program = lualatex

% Copyright (c) 2020 Thomas Jenni
% Copyright (c) 2021 Thomas Jenni

% Permission is hereby granted, free of charge, to any person obtaining a copy
% of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion src/physical-astronomical.lua
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
--[[
Astronomical data
Copyright (c) 2020 Thomas Jenni
Copyright (c) 2021 Thomas Jenni
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion src/physical-data.lua
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
--[[
This file contains the methods for accessing physical data.
Copyright (c) 2020 Thomas Jenni
Copyright (c) 2021 Thomas Jenni
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion src/physical-definition.lua
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
This file contains the definitions for dimensions, prefixes,
SI, Imperial and U.S. Survey units
Copyright (c) 2020 Thomas Jenni
Copyright (c) 2021 Thomas Jenni
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion src/physical-dimension.lua
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ The Dimension class keeps track of the dimenionality of a physical quantity.
It can be used to perform validity checks on mathematical operations such as
addition and subtraction.
Copyright (c) 2020 Thomas Jenni
Copyright (c) 2021 Thomas Jenni
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion src/physical-number.lua
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
This file contains the number class which allows to do
calculations with uncertainties.
Copyright (c) 2020 Thomas Jenni
Copyright (c) 2021 Thomas Jenni
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion src/physical-quantity.lua
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
--[[
This file contains the quantity class
Copyright (c) 2020 Thomas Jenni
Copyright (c) 2021 Thomas Jenni
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion src/physical-unit.lua
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
This file contains the unit class. It task is keeping
track of the unit terms.
Copyright (c) 2020 Thomas Jenni
Copyright (c) 2021 Thomas Jenni
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
18 changes: 8 additions & 10 deletions src/physical.lua
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
lua-physical
Author: Thomas Jenni
Version: 1.0.4
Date: 2020-09-15
Version: 1.0.5
Date: 2021-05-08
License: MIT
Expand All @@ -31,16 +31,14 @@ SOFTWARE.

-- Source: http://kiki.to/blog/2014/04/12/rule-5-beware-of-multiple-files/

local prefix = ''
local Dimension = require('physical-dimension')
local Unit = require('physical-unit')
local Quantity = require('physical-quantity')
local Number = require('physical-number')

local Dimension = require(prefix..'physical-dimension')
local Unit = require(prefix..'physical-unit')
local Quantity = require(prefix..'physical-quantity')
local Number = require(prefix..'physical-number')
require('physical-definition')

require(prefix..'physical-definition')

local Data = require(prefix..'physical-data')
local Data = require('physical-data')

local m = {
Dimension = Dimension,
Expand Down

0 comments on commit 9fcf1d1

Please sign in to comment.